home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / write.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  54 lines

  1. /* 
  2.  * write.c --
  3.  *
  4.  *    Procedure to map from Unix write system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: write.c,v 1.1 88/06/19 14:32:13 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "compatInt.h"
  17.  
  18.  
  19. /*
  20.  *----------------------------------------------------------------------
  21.  *
  22.  * write --
  23.  *
  24.  *    Procedure to map from Unix write system call to Sprite Fs_Write.
  25.  *
  26.  * Results:
  27.  *    UNIX_ERROR is returned upon error, with the actual error code
  28.  *    stored in errno.  Upon success, the number of bytes actually
  29.  *    written is returned.
  30.  *
  31.  * Side effects:
  32.  *    The data in the buffer is written to the file at the indicated offset.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. int
  38. write(descriptor, buffer, numBytes)
  39.     int descriptor;        /* descriptor for stream to write */
  40.     char *buffer;        /* pointer to buffer area */
  41.     int numBytes;        /* number of bytes to write */
  42. {
  43.     ReturnStatus status;    /* result returned by Fs_Write */
  44.     int amountwritten;        /* place to hold number of bytes written */
  45.  
  46.     status = Fs_Write(descriptor, numBytes, buffer, &amountwritten);
  47.     if (status != SUCCESS) {
  48.     errno = Compat_MapCode(status);
  49.     return(UNIX_ERROR);
  50.     } else {
  51.     return(amountwritten);
  52.     }
  53. }
  54.